home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJSRC106.ARJ / MAIN.C < prev    next >
C/C++ Source or Header  |  1991-09-02  |  157b  |  13 lines

  1. #include "hc.h"
  2.  
  3. main(int argc, char **argv)
  4. {
  5.   int i;
  6.   for (i=0; i<MAX_ID; i++)
  7.   {
  8.     id_name[i] = 0;
  9.     id_val[i] = 0;
  10.   }
  11.   yyparse();
  12. }
  13.